빡쳤던 노트

init시 특정 bounds 형태 적용 안됨

 type PointBoundsArrayLiteral = [number, number, number, number];
 type PointBoundsLiteral = PointBoundsArrayLiteral | PointBoundsObjectLiteral;
 type LatLngBoundsLiteral = PointBoundsLiteral | LatLngBoundsObjectLiteral;

위 타입 정의를 보고 PointBoundsArrayLiteral을 new naver.maps.Map의 option으로 넣었는데 적용 안됨.
결국 { minX, minY ... } 형태로 넣으니 작동한다.

공식 문서 설명 맞지 않음

CleanShot 2024-10-18 at 11.45.40@2x.jpg

오히려 bounds 값을 무시하고 center와 zoom이 설정되더라. 어이없음.